home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 2 / AACD 2.iso / AACD / Programming / ADOS Guide / ADOS commands / Skip < prev    next >
Text File  |  1998-02-16  |  522b  |  25 lines

  1.                          --AMIGADOS GUIDE V2.5--
  2.                                   SKIP
  3.  
  4.  
  5.    USE:
  6.    This command is for use in Scripts.  It is used to jump certain parts of
  7.    a script defined by the user.
  8.  
  9.    PATH:
  10.    Internal
  11.  
  12.    SYSTEM:
  13.    2.0, 2.1, 3.0
  14.  
  15.    EXAMPLES:
  16.    1>SKIP end
  17.      ECHO "AmigaDOS Guide V2"
  18.      LAB end
  19.  
  20.    NOTES:
  21.    In the above example the Echo command will not be executed as the
  22.    program will skip it and jump to LAB end.
  23.  
  24.    LAB end is the Label command which tells skip where to jump to.
  25.